home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / FDF101.ARJ / ELIB.ZOO / fdates.c < prev    next >
C/C++ Source or Header  |  1992-04-30  |  383b  |  21 lines

  1. #include <io.h>
  2.  
  3. /*
  4.  *    copy_file_dates()
  5.  *
  6.  *    Input:
  7.  *        src_handle - handle of source file
  8.  *        dst_handle - handle of destination file
  9.  *    Comments:
  10.  *        copies the date and time from one file to another
  11.  */
  12.  
  13. void copy_file_dates(int src_handle, int dst_handle)
  14. {
  15.     struct ftime ftime_buf;
  16.  
  17.     getftime(src_handle, &ftime_buf);
  18.     setftime(dst_handle, &ftime_buf);
  19. }
  20.  
  21.